home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / actmenu / frmdocum.frm < prev    next >
Text File  |  1999-08-29  |  1KB  |  46 lines

  1. VERSION 5.00
  2. Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
  3. Begin VB.Form frmDocument 
  4.    Caption         =   "frmDocument"
  5.    ClientHeight    =   3195
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   4680
  9.    LinkTopic       =   "Form1"
  10.    MDIChild        =   -1  'True
  11.    ScaleHeight     =   3195
  12.    ScaleWidth      =   4680
  13.    WindowState     =   2  'Maximized
  14.    Begin RichTextLib.RichTextBox rtfText 
  15.       Height          =   2000
  16.       Left            =   100
  17.       TabIndex        =   0
  18.       Top             =   100
  19.       Width           =   3000
  20.       _ExtentX        =   5292
  21.       _ExtentY        =   3519
  22.       _Version        =   393217
  23.       Enabled         =   -1  'True
  24.       ScrollBars      =   3
  25.       TextRTF         =   $"frmDocument.frx":0000
  26.    End
  27. End
  28. Attribute VB_Name = "frmDocument"
  29. Attribute VB_GlobalNameSpace = False
  30. Attribute VB_Creatable = False
  31. Attribute VB_PredeclaredId = True
  32. Attribute VB_Exposed = False
  33. Option Explicit
  34.  
  35. Private Sub Form_Load()
  36.     Form_Resize
  37. End Sub
  38.  
  39.  
  40. Private Sub Form_Resize()
  41.     On Error Resume Next
  42.     rtfText.Move 100, 100, Me.ScaleWidth - 200, Me.ScaleHeight - 200
  43.     rtfText.RightMargin = rtfText.Width - 400
  44. End Sub
  45.  
  46.